-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[STM32L4] Set NVIC_RAM_VECTOR_ADDRESS to 0x10000000 #1553
Conversation
I just checked the Nucleo_interrupt example but I didn't run the mbed tests. I'll do it too. But I assure you that the 0x20000000 is really a mistake... |
Yes, therefore the test should be there and run. |
I ran the InterruptIn test. The InterruptIn2 test is not automated for these boards nor the Interrupt_chaining test. Nevertheless the InterruptIn test shows well the correction. ORIGINAL with #define NVIC_RAM_VECTOR_ADDRESS (0x20000000) for uARM
CORRECTION
|
Thanks! @bridadan Please have a look at the above |
[STM32L4] Set NVIC_RAM_VECTOR_ADDRESS to 0x10000000
@0xc0170 InterruptIn results look good. Regarding InterruptIn2, that test looks fairly unnecessary, perharps we can move/remove it? Regarding Interrupt_chaining, it looks like it should either be expanded to include all platforms or modified to be general? It looks the |
Fix issue #1413
Fix issue #1509